home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1996 March
/
EnigmA AMIGA RUN 05 (1996)(G.R. Edizioni)(IT)[!][issue 1996-03][Skylink CD IV].iso
/
earcd
/
comm1
/
zmime1_0.lha
/
zmime1_0
/
Rexx
/
SendMail.zprx
Wrap
Text File
|
1996-01-24
|
480b
|
27 lines
/*
$VER: SendMail.zprx 1.0 (24.1.96) Copyright (c) Ralph Seicher
This is a very simple ARexx script for "Zodiac's Point" (V37.206
or better required) and "zmime".
*/
options results
parse arg argstr
address 'ZPoint'
whichlevel
if result ~= "BOARD" then do
requestnotify 'Not inside a board!'
exit 5
end
writemessage argstr' ctype message/rfc822'
mid = result
if mid = '' then do
requestnotify 'WRITEMESSAGE failed!'
exit 5
end
address command 'delete 'mimefile
exit 0